summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-09-06 02:27:48 +0200
committerbunnei <bunneidev@gmail.com>2022-10-19 04:13:34 +0200
commite63a5459e361d8f33fb9045bc9684d516d087b0c (patch)
tree6c7158326abe4953de7037e8565643311f0381f7
parentMerge pull request #9054 from Docteh/just_lz4 (diff)
downloadyuzu-e63a5459e361d8f33fb9045bc9684d516d087b0c.tar
yuzu-e63a5459e361d8f33fb9045bc9684d516d087b0c.tar.gz
yuzu-e63a5459e361d8f33fb9045bc9684d516d087b0c.tar.bz2
yuzu-e63a5459e361d8f33fb9045bc9684d516d087b0c.tar.lz
yuzu-e63a5459e361d8f33fb9045bc9684d516d087b0c.tar.xz
yuzu-e63a5459e361d8f33fb9045bc9684d516d087b0c.tar.zst
yuzu-e63a5459e361d8f33fb9045bc9684d516d087b0c.zip
-rw-r--r--src/core/hle/kernel/svc_common.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc_common.h b/src/core/hle/kernel/svc_common.h
index 95750c3eb..85506710e 100644
--- a/src/core/hle/kernel/svc_common.h
+++ b/src/core/hle/kernel/svc_common.h
@@ -14,8 +14,11 @@ namespace Kernel::Svc {
using namespace Common::Literals;
-constexpr s32 ArgumentHandleCountMax = 0x40;
-constexpr u32 HandleWaitMask{1u << 30};
+constexpr inline s32 ArgumentHandleCountMax = 0x40;
+
+constexpr inline u32 HandleWaitMask = 1u << 30;
+
+constexpr inline s64 WaitInfinite = -1;
constexpr inline std::size_t HeapSizeAlignment = 2_MiB;